home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2003-042.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2003:042-1
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14026);
  12.  script_version ("$Revision: 1.4 $");
  13.  script_bugtraq_id(7230);
  14.  script_cve_id("CAN-2003-0161");
  15.  
  16.  name["english"] = "MDKSA-2003:042-1: sendmail";
  17.  
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote host is missing the patch for the advisory MDKSA-2003:042-1 (sendmail).
  22.  
  23.  
  24. Michal Zalweski discovered a vulnerability in sendmail versions earlier than
  25. 8.12.9 in the address parser, which performs insufficient bounds checking in
  26. certain conditions due to a char to int conversion. This vulnerability makes it
  27. poissible for an attacker to take control of sendmail and is thought to be
  28. remotely exploitable, and very likely locally exploitable. Updated packages are
  29. available with patches applied (the older versions), and the new fixed version
  30. is available for Mandrake Linux 9.1 users.
  31. Update:
  32. The packages for Mandrake Linux 9.1 and 9.1/PPC were not GPG-signed. This has
  33. been fixed and as a result the md5sums have changed. Thanks to Mark Lyda for
  34. pointing this out.
  35.  
  36.  
  37. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2003:042-1
  38. Risk factor : High";
  39.  
  40.  
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Check for the version of the sendmail package";
  45.  script_summary(english:summary["english"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  50.  family["english"] = "Mandrake Local Security Checks";
  51.  script_family(english:family["english"]);
  52.  
  53.  script_dependencies("ssh_get_info.nasl");
  54.  script_require_keys("Host/Mandrake/rpm-list");
  55.  exit(0);
  56. }
  57.  
  58. include("rpm.inc");
  59. if ( rpm_check( reference:"sendmail-8.12.9-1.1mdk", release:"MDK9.1", yank:"mdk") )
  60. {
  61.  security_hole(0);
  62.  exit(0);
  63. }
  64. if ( rpm_check( reference:"sendmail-cf-8.12.9-1.1mdk", release:"MDK9.1", yank:"mdk") )
  65. {
  66.  security_hole(0);
  67.  exit(0);
  68. }
  69. if ( rpm_check( reference:"sendmail-devel-8.12.9-1.1mdk", release:"MDK9.1", yank:"mdk") )
  70. {
  71.  security_hole(0);
  72.  exit(0);
  73. }
  74. if ( rpm_check( reference:"sendmail-doc-8.12.9-1.1mdk", release:"MDK9.1", yank:"mdk") )
  75. {
  76.  security_hole(0);
  77.  exit(0);
  78. }
  79. if (rpm_exists(rpm:"sendmail-", release:"MDK9.1") )
  80. {
  81.  set_kb_item(name:"CAN-2003-0161", value:TRUE);
  82. }
  83.